Tables [dbo].[Tagged_Page_PortletIC]
Properties
PropertyValue
Row Count0
Created10:31:40 AM Tuesday, March 02, 2010
Last Modified11:40:08 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_Tagged_Page_PortletIC: TaggedPagePortletID\InterestCategoryIDForeign Keys FK_TaggedPagePortletIC_TaggedPagePortlet: [dbo].[Tagged_Page_Portlet].TaggedPagePortletIDTaggedPagePortletIDnumeric(18,0)9
No
Cluster Primary Key PK_Tagged_Page_PortletIC: TaggedPagePortletID\InterestCategoryIDForeign Keys FK_TaggedPagePortletIC_InterestCategory: [dbo].[Interest_Category].InterestCategoryIDInterestCategoryIDnumeric(18,0)9
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_Tagged_Page_PortletIC: TaggedPagePortletID\InterestCategoryIDPK_Tagged_Page_PortletICTaggedPagePortletID, InterestCategoryID
Yes
Foreign Keys Foreign Keys
NameColumns
FK_TaggedPagePortletIC_InterestCategoryInterestCategoryID->[dbo].[Interest_Category].[InterestCategoryID]
FK_TaggedPagePortletIC_TaggedPagePortletTaggedPagePortletID->[dbo].[Tagged_Page_Portlet].[TaggedPagePortletID]
Permissions
TypeActionOwning Principal
GrantDeleteIMIS
GrantInsertIMIS
GrantReferencesIMIS
GrantSelectIMIS
GrantUpdateIMIS
SQL Script
CREATE TABLE [dbo].[Tagged_Page_PortletIC]
(
[TaggedPagePortletID] [numeric] (18, 0) NOT NULL,
[InterestCategoryID] [numeric] (18, 0) NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[Tagged_Page_PortletIC] ADD CONSTRAINT [PK_Tagged_Page_PortletIC] PRIMARY KEY CLUSTERED ([TaggedPagePortletID], [InterestCategoryID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Tagged_Page_PortletIC] ADD CONSTRAINT [FK_TaggedPagePortletIC_InterestCategory] FOREIGN KEY ([InterestCategoryID]) REFERENCES [dbo].[Interest_Category] ([InterestCategoryID])
GO
ALTER TABLE [dbo].[Tagged_Page_PortletIC] ADD CONSTRAINT [FK_TaggedPagePortletIC_TaggedPagePortlet] FOREIGN KEY ([TaggedPagePortletID]) REFERENCES [dbo].[Tagged_Page_Portlet] ([TaggedPagePortletID])
GO
GRANT REFERENCES ON  [dbo].[Tagged_Page_PortletIC] TO [IMIS]
GRANT SELECT ON  [dbo].[Tagged_Page_PortletIC] TO [IMIS]
GRANT INSERT ON  [dbo].[Tagged_Page_PortletIC] TO [IMIS]
GRANT DELETE ON  [dbo].[Tagged_Page_PortletIC] TO [IMIS]
GRANT UPDATE ON  [dbo].[Tagged_Page_PortletIC] TO [IMIS]
GO
Uses
Used By